Proving linear independence
Suppose we have three vectors in $\mathbb{R}^3$:
- $v_1 = (a_1, a_2, a_3)$
- $v_2 = (b_1, b_2, b_3)$
- $v_3 = (c_1, c_2, c_3)$
To check if they are linearly independent, we look at the equation $$x v_1 + y v_2 + z v_3 = (0,0,0)$$ and ask whether the only solution is $$x = 0,\quad y = 0,\quad z = 0.$$ If that’s the only way to get the zero vector, then $v_1, v_2, v_3$ are linearly independent.
Step 1: Write the system of equations
Write out the vector equation component‑wise: $$x(a_1, a_2, a_3) + y(b_1, b_2, b_3) + z(c_1, c_2, c_3) = (0,0,0).$$ This gives three equations: $$\begin{cases} x a_1 + y b_1 + z c_1 = 0 \\ x a_2 + y b_2 + z c_2 = 0 \\ x a_3 + y b_3 + z c_3 = 0 \end{cases}$$ So we have a system of 3 equations in the 3 unknowns $x, y, z$.
Step 2: View it as a matrix equation
We can write this as: $$\begin{bmatrix} a_1 & b_1 & c_1 \\ a_2 & b_2 & c_2 \\ a_3 & b_3 & c_3 \end{bmatrix} \begin{bmatrix} x \\ y \\ z \end{bmatrix} = \begin{bmatrix} 0 \\ 0 \\ 0 \end{bmatrix}.$$
- The columns of the matrix are the vectors $v_1, v_2, v_3$.
- We are checking whether the only solution is $x = y = z = 0$.
If yes, the vectors are linearly independent.
Step 3: A concrete example
Take:
- $v_1 = (1,0,1)$
- $v_2 = (0,1,1)$
- $v_3 = (1,1,2)$
We solve $$x(1,0,1) + y(0,1,1) + z(1,1,2) = (0,0,0).$$ Component‑wise: $$\begin{cases} x + 0y + z = 0 \\ 0x + y + z = 0 \\ x + y + 2z = 0 \end{cases}$$ So:
- First equation: $x + z = 0$
- Second equation: $y + z = 0$
- Third equation: $x + y + 2z = 0$
From the first two:
Substitute into the third: $$x + y + 2z = (-z) + (-z) + 2z = 0,$$ which is always true. So $z$ is free, and we get infinitely many solutions: $$(x,y,z) = (-z, -z, z).$$ Because there are non‑zero solutions (for example, $z = 1$ gives $(-1,-1,1)$), these vectors are linearly dependent.
Step 4: What linear independence would look like
For three vectors to be linearly independent, solving $$x v_1 + y v_2 + z v_3 = (0,0,0)$$ must force $$x = 0,\quad y = 0,\quad z = 0$$ and no other solutions.
In terms of the system:
- When you solve the 3 equations in $x, y, z$, you should get a unique solution.
- If you ever get a free variable (like $z$ above), then there are infinitely many solutions and the vectors are dependent.
So the method is:
- Set up $x v_1 + y v_2 + z v_3 = (0,0,0)$.
- Solve the resulting system for $x, y, z$.
- Conclude:
- Only $(x,y,z) = (0,0,0)$ → vectors are linearly independent.
- Any other solution exists → vectors are linearly dependent (one is redundant).